home *** CD-ROM | disk | FTP | other *** search
/ World of Video / World of Video.iso / gfxprograms / conversion / iffconvert / source.lha / src / iffpack.h < prev   
Encoding:
C/C++ Source or Header  |  1995-01-10  |  495 b   |  19 lines

  1. #define NO_MEMORY 1
  2. #define BAD_IFF 2
  3. #define READ_ERROR 3
  4. #define WRITE_ERROR 4
  5. #define UNKNOWN_COMPRESSION 5
  6.  
  7. #ifdef ERRORSTRINGS
  8. char *errortext[]={"","No Memory","No IFF-ILBM File","Read error",
  9.                    "Write error","Unknown compressionmethod"};
  10. #endif
  11.  
  12. void SetColors(struct ViewPort *vp);
  13. int ReadPicSize(FILE *,SHORT *,SHORT *,SHORT *,SHORT *,SHORT *,USHORT *);
  14. int ReadBody(struct RastPort *,FILE *);
  15. int WriteWindow(FILE *,struct Window *,int,int);
  16. void IFFCleanup(void);
  17.  
  18.  
  19.